.raining-section {
    padding: 80px 20px;
    background: #f5f7fa;
    text-align: center;
  }
  
  .raining-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #333;
  }
  
  .raining-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
    min-height: 400px;
  }
  
  @media (min-width: 768px) {
    .raining-cards {
      flex-direction: row;
      justify-content: space-around;
      align-items: flex-start;
    }
  }
  
  .raining-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
    transition: transform 0.5s ease, box-shadow 0.5s ease, opacity 0.3s ease;
    opacity: 0;
    transform: translateX(100px);
    animation: fadeInSlide 1s forwards;
  }
  
  .raining-card.left {
    animation-name: fadeInLeft;
  }
  
  .raining-card.right {
    animation-name: fadeInRight;
  }
  
  .raining-card h3 {
    margin-bottom: 10px;
    color: #007bff;
  }
  
  .raining-card p {
    color: #555;
  }
  
  .raining-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    opacity: 1;
  }
  
  /* Animations */
  @keyframes fadeInLeft {
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes fadeInRight {
    from {
      transform: translateX(100px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  /* Optional: Webkit fallback */
  @-webkit-keyframes fadeInLeft {
    to {
      opacity: 1;
      -webkit-transform: translateX(0);
    }
  }
  
  @-webkit-keyframes fadeInRight {
    from {
      -webkit-transform: translateX(100px);
    }
    to {
      opacity: 1;
      -webkit-transform: translateX(0);
    }
  }
  .raining-section {
    padding: 80px 20px;
    background: #f5f7fa;
    text-align: center;
  }
  
  .raining-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #333;
  }
  
  .raining-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
    min-height: 400px;
  }
  
  @media (min-width: 768px) {
    .raining-cards {
      flex-direction: row;
      justify-content: space-around;
      align-items: flex-start;
    }
  }
  
  .raining-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
    transition: transform 0.5s ease, box-shadow 0.5s ease, opacity 0.3s ease;
    opacity: 0;
    transform: translateX(100px);
    animation: fadeInSlide 1s forwards;
  }
  
  .raining-card.left {
    animation-name: fadeInLeft;
  }
  
  .raining-card.right {
    animation-name: fadeInRight;
  }
  
  .raining-card h3 {
    margin-bottom: 10px;
    color: #007bff;
  }
  
  .raining-card p {
    color: #555;
  }
  
  .raining-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    opacity: 1;
  }
  
  /* Animations */
  @keyframes fadeInLeft {
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes fadeInRight {
    from {
      transform: translateX(100px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  /* Optional: Webkit fallback */
  @-webkit-keyframes fadeInLeft {
    to {
      opacity: 1;
      -webkit-transform: translateX(0);
    }
  }
  
  @-webkit-keyframes fadeInRight {
    from {
      -webkit-transform: translateX(100px);
    }
    to {
      opacity: 1;
      -webkit-transform: translateX(0);
    }
  }
  .raining-card {
    background: linear-gradient(to right, #f7f9fc,white); /* সাদা গাঢ়তা কমানো */
    border-left: 10px solid #007bff;
    border-radius: 16px;
    padding: 30px 35px;
    max-width: 600px;
    width: 300px;
    height: 200px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05); /* শেড কমানো */
    transform: translateX(150px);
    opacity: 0;
    animation: slideInRight 1s ease forwards;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
  }
  
  .raining-card h3 {
    font-size: 24px;
    color: #007bff;
    margin-bottom: 12px;
  }
  
  .raining-card p {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
  }
  
  .raining-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: #007bff;
    border-radius: 16px 0 0 16px;
  }
  
  .raining-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08); /* হোভার ইফেক্টে শেড আরো কম */
  }
  
  /* Animation */
  @keyframes slideInRight {
    0% {
      transform: translateX(150px);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .raining-card {
      padding: 20px;
    }
  
    .raining-card h3 {
      font-size: 20px;
    }
  
    .raining-card p {
      font-size: 15px;
    }
  }
  